/* ============================================================
   SELLXPERT – REDESIGNED SECTIONS (Proble@s→Solutions + Integrations)
   + Enhanced global micro-animations
   ============================================================ */

/* ── Global animation enhancements ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes dash-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes beam-flow {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  30%  { opacity: 1; }
  100% { stroke-dashoffset: 0;   opacity: 0.8; }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-80px) scale(0); opacity: 0; }
}
@keyframes card-enter-left {
  from { opacity: 0; transform: translateX(-60px) rotateY(20deg); }
  to   { opacity: 1; transform: translateX(0) rotateY(0); }
}
@keyframes card-enter-right {
  from { opacity: 0; transform: translateX(60px) rotateY(-20deg); }
  to   { opacity: 1; transform: translateX(0) rotateY(0); }
}
@keyframes lightning {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,180,216,0.4); }
  50%       { box-shadow: 0 0 50px rgba(0,180,216,0.8), 0 0 80px rgba(0,115,207,0.4); }
}

/* ============================================================
   REVEAL — enhanced scroll reveal with stagger
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }
.delay-4 { transition-delay: 0.48s !important; }
.delay-5 { transition-delay: 0.60s !important; }

/* ============================================================
   ██████╗ ███████╗
   ██╔══██╗██╔════╝  PROBLEM → SOLUTION
   ██████╔╝███████╗
   ██╔═══╝ ╚════██║
   ██║     ███████║
   ╚═╝     ╚══════╝
   ============================================================ */

/* ============================================================
   PROBLEM & SOLUTION — PASTEL CLOUD REDESIGN
   Light, soft, modern. Sky tones. Glassmorphism cards.
   ============================================================ */

/* ─── Section base ─── */
.ps-section {
  /* padding: 120px 0 140px; */
  background: linear-gradient(160deg, #e8f4ff 0%, #f0f7ff 30%, #f5f0ff 60%, #e8f4ff 100%);
  position: relative;
  overflow: hidden;
  color: #1a2b4a;
}

/* Hide legacy dark-mode elements */
.ps-stars,
.ps-glow-1,
.ps-glow-2,
.ps-glow-3 {
  display: none !important;
}

/* ─── Soft background gradient orbs ─── */
.ps-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(147,197,253,0.35) 0%, transparent 70%);
  top: -180px; left: -200px;
  border-radius: 50%;
  pointer-events: none;
  animation: ps-orb-drift 18s ease-in-out infinite alternate;
}

.ps-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,181,253,0.3) 0%, transparent 70%);
  bottom: -120px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
  animation: ps-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes ps-orb-drift {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(40px) translateX(30px); }
}

/* ─── Animated pastel clouds ─── */
.ps-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ps-cloud {
  position: absolute;
  background: white;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0;
}

/* Cloud shapes via layered box-shadows and border-radius blobs */
.ps-cloud-1 {
  width: 280px; height: 80px;
  top: 8%; left: -80px;
  background: rgba(255,255,255,0.72);
  box-shadow: 60px -20px 0 20px rgba(255,255,255,0.5),
              110px 10px 0 10px rgba(255,255,255,0.4),
              -30px 10px 0 15px rgba(255,255,255,0.45);
  animation: cloud-float-r 38s linear infinite;
}

.ps-cloud-2 {
  width: 200px; height: 60px;
  top: 20%; left: -60px;
  background: rgba(224,242,254,0.65);
  box-shadow: 50px -15px 0 15px rgba(224,242,254,0.5),
              90px 8px 0 8px rgba(224,242,254,0.4);
  animation: cloud-float-r 52s linear infinite;
  animation-delay: -18s;
}

.ps-cloud-3 {
  width: 320px; height: 90px;
  top: 55%; right: -100px;
  background: rgba(237,233,254,0.6);
  box-shadow: -70px -22px 0 22px rgba(237,233,254,0.45),
              -130px 12px 0 12px rgba(237,233,254,0.35);
  animation: cloud-float-l 45s linear infinite;
  animation-delay: -8s;
}

.ps-cloud-4 {
  width: 240px; height: 70px;
  top: 75%; left: -70px;
  background: rgba(219,234,254,0.55);
  box-shadow: 55px -18px 0 18px rgba(219,234,254,0.45),
              100px 10px 0 10px rgba(219,234,254,0.35);
  animation: cloud-float-r 60s linear infinite;
  animation-delay: -30s;
}

.ps-cloud-5 {
  width: 180px; height: 55px;
  top: 35%; right: -50px;
  background: rgba(254,226,226,0.4);
  box-shadow: -40px -14px 0 14px rgba(254,226,226,0.35),
              -75px 8px 0 8px rgba(254,226,226,0.28);
  animation: cloud-float-l 48s linear infinite;
  animation-delay: -22s;
}

@keyframes cloud-float-r {
  from { transform: translateX(0) translateY(0); opacity: 0.9; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateX(110vw) translateY(-12px); opacity: 0.9; }
}

@keyframes cloud-float-l {
  from { transform: translateX(0) translateY(0); opacity: 0.9; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateX(-110vw) translateY(10px); opacity: 0.9; }
}

/* ─── Section header ─── */
.ps-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.ps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,139,209,0.12);
  border: 1px solid rgba(99,139,209,0.25);
  color: #3b70c4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.ps-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #4e90e8;
  border-radius: 50%;
  animation: ps-dot-pulse 2s ease-out infinite;
}

@keyframes ps-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(78,144,232,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(78,144,232,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,144,232,0); }
}

.ps-section .section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f2545;
  margin-bottom: 14px;
  line-height: 1.15;
}

.ps-subtitle {
  color: #4a6080;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Column labels ─── */
.ps-col-labels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ps-col-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 4px;
}

.ps-col-label.left  {
  color: #c0392b;
  justify-content: flex-end;
}

.ps-col-label.right {
  color: #0f9960;
}

.ps-col-label.left  .label-dot { background: #e05c5c; }
.ps-col-label.right .label-dot { background: #27ae74; }

.label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ps-dot-pulse 2.5s ease-out infinite;
}

/* ─── Grid ─── */
.ps-grid-new {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* ─── Row ─── */
.ps-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ps-row.ps-visible {
  opacity: 1;
  transform: translateY(0);
}

.ps-row:nth-child(1) { transition-delay: 0.05s; }
.ps-row:nth-child(2) { transition-delay: 0.15s; }
.ps-row:nth-child(3) { transition-delay: 0.25s; }
.ps-row:nth-child(4) { transition-delay: 0.35s; }

/* ─── Cards (glassmorphism) ─── */
.ps-card {
  padding: 22px 26px;
  border-radius: 18px;
  font-size: 0.93rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ps-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.ps-row:hover .ps-card-icon {
  transform: scale(1.18) rotate(-5deg);
}

.ps-card-text { line-height: 1.45; }

.ps-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
  opacity: 0.55;
}

/* ─── Problem card ─── */
.ps-card.problem {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(224, 92, 92, 0.25);
  color: #8b2020;
  box-shadow: 0 4px 24px rgba(200, 80, 80, 0.08),
              inset 0 1px 0 rgba(255,255,255,0.8);
}

.ps-card.problem .ps-card-label {
  color: #c0392b;
}

.ps-card.problem::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f4a6a6, #e05c5c);
  border-radius: 4px 0 0 4px;
}

.ps-row:hover .ps-card.problem {
  transform: translateX(-5px) translateY(-3px);
  box-shadow: -6px 12px 36px rgba(200, 80, 80, 0.18),
              0 4px 16px rgba(200, 80, 80, 0.1),
              inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(224, 92, 92, 0.45);
  background: rgba(255, 255, 255, 0.88);
}

/* ─── Solution card ─── */
.ps-card.solution {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 174, 116, 0.25);
  color: #0d5c38;
  box-shadow: 0 4px 24px rgba(39, 174, 116, 0.08),
              inset 0 1px 0 rgba(255,255,255,0.8);
}

.ps-card.solution .ps-card-label {
  color: #0f9960;
}

.ps-card.solution::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6ee7b7, #27ae74);
  border-radius: 4px 0 0 4px;
}

.ps-row:hover .ps-card.solution {
  transform: translateX(5px) translateY(-3px);
  box-shadow: 6px 12px 36px rgba(39, 174, 116, 0.18),
              0 4px 16px rgba(39, 174, 116, 0.1),
              inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(39, 174, 116, 0.45);
  background: rgba(255, 255, 255, 0.88);
}

/* ─── Connector (center bolt) ─── */
.ps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.ps-bolt {
  width: 44px; height: 44px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #4e90e8, #7c3aed); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(78,144,232,0.35),
              0 0 0 6px rgba(147,197,253,0.2);
}

.ps-row:hover .ps-bolt {
  transform: scale(1.18);
  box-shadow: 0 6px 30px rgba(78,144,232,0.55),
              0 0 0 10px rgba(147,197,253,0.25);
}

.ps-bolt::before,
.ps-bolt::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(78,144,232,0.3);
  animation: ps-ring-expand 2.5s ease-out infinite;
}

.ps-bolt::before { width: 60px; height: 60px; }
.ps-bolt::after  { width: 76px; height: 76px; animation-delay: 0.6s; }

@keyframes ps-ring-expand {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── Connecting line ─── */
.ps-line {
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(224,92,92,0.3),
    rgba(147,197,253,0.5),
    rgba(39,174,116,0.3));
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.ps-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.85),
    transparent);
  animation: shimmer 3.5s linear infinite;
}

/* ─── CTA bar ─── */
.ps-cta-bar {
  margin-top: 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ps-cta-bar p {
  color: #6a85a8;
  font-size: 0.85rem;
  margin-top: 14px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .ps-col-labels { display: none; }

  .ps-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ps-connector {
    height: 40px;
  }

  .ps-bolt::before,
  .ps-bolt::after { display: none; }

  .ps-line { display: none; }

  .ps-card.problem { border-radius: 16px; }
  .ps-card.solution { border-radius: 16px; }
}

/* ============================================================
   ██╗███╗   ██╗████████╗███████╗ ██████╗
   ██║████╗  ██║╚══██╔══╝██╔════╝██╔════╝
   ██║██╔██╗ ██║   ██║   █████╗  ██║  ███╗
   ██║██║╚██╗██║   ██║   ██╔══╝  ██║   ██║
   ██║██║ ╚████║   ██║   ███████╗╚██████╔╝
   ╚═╝╚═╝  ╚═══╝   ╚═╝   ╚══════╝ ╚═════╝
   INTEGRATIONS REDESIGN
   ============================================================ */

.integrations-section {
  padding: 60px 0;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

/* ─── Subtle grid background ─── */
.integrations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,115,207,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,115,207,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ─── Header ─── */
.integ-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.integ-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,115,207,0.08);
  border: 1px solid rgba(0,115,207,0.2);
  color: #0073CF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.integ-section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0B2545;
  line-height: 1.15;
  margin-bottom: 16px;
}
.integ-sub {
  color: #6B7280;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ─── Category tabs ─── */
.integ-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.integ-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #E2EAF4;
  background: #fff;
  color: #6B7280;
  transition: all 0.25s ease;
}
.integ-tab.active, .integ-tab:hover {
  background: #0073CF;
  border-color: #0073CF;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,115,207,0.3);
}

/* ─── Hub layout wrapper ─── */
.integ-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* ─── Orbital hub ─── */
.integ-hub-wrap {
  flex: 0 0 420px;
  position: relative;
  height: 420px;
}
.integ-hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Orbital rings */
.orbit-ring {
  fill: none;
  stroke: rgba(0,115,207,0.1);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: spin-slow var(--dur, 30s) linear infinite;
  transform-origin: 50% 50%;
}
.orbit-ring.rev { animation-name: spin-rev; }

/* Center hub */
.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(0,115,207,0.08), 0 0 0 32px rgba(0,115,207,0.04);
  z-index: 10;
  animation: glow-pulse 3s ease-in-out infinite;
}
.hub-center img {
  width: 60px; height: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.hub-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Pulse rings around hub */
.hub-pulse {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(0,115,207,0.4);
  animation: pulse-ring 2.4s ease-out infinite;
}
.hub-pulse:nth-child(1) { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
.hub-pulse:nth-child(2) { width: 160px; height: 160px; margin: -80px 0 0 -80px; animation-delay: 0.6s; }
.hub-pulse:nth-child(3) { width: 192px; height: 192px; margin: -96px 0 0 -96px; animation-delay: 1.2s; }

/* SVG beam lines */
.beam-line {
  fill: none;
  stroke: url(#beamGrad);
  stroke-width: 1.5;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0;
  transition: stroke-dashoffset 0.6s ease, opacity 0.4s ease;
}
.integ-hub-wrap.active .beam-line {
  animation: beam-flow 2s ease-out infinite;
}
.beam-line:nth-child(odd)  { animation-delay: 0.3s; }
.beam-line:nth-child(even) { animation-delay: 0.7s; }

/* Orbital logo nodes */
.orbit-node {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid #E2EAF4;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 5;
}
.orbit-node img { width: 34px; height: 34px; object-fit: contain; }
.orbit-node:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 32px rgba(0,115,207,0.3);
  border-color: #0073CF;
  z-index: 20;
}
.orbit-node.active-node {
  border-color: #0073CF;
  box-shadow: 0 0 0 4px rgba(0,115,207,0.15), 0 8px 24px rgba(0,115,207,0.25);
}

/* ─── Cards list (right of hub) ─── */
.integ-cards-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.integ-card-new {
  background: #fff;
  border: 1.5px solid #E2EAF4;
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.integ-card-new.ic-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.integ-card-new:nth-child(1) { transition-delay: 0.05s; }
.integ-card-new:nth-child(2) { transition-delay: 0.10s; }
.integ-card-new:nth-child(3) { transition-delay: 0.15s; }
.integ-card-new:nth-child(4) { transition-delay: 0.20s; }
.integ-card-new:nth-child(5) { transition-delay: 0.25s; }
.integ-card-new:nth-child(6) { transition-delay: 0.30s; }
.integ-card-new:nth-child(7) { transition-delay: 0.35s; }
.integ-card-new:nth-child(8) { transition-delay: 0.40s; }

/* Active state bar on left */
.integ-card-new::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0073CF, #00B4D8);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.35s ease;
  transform-origin: bottom;
}
.integ-card-new:hover::before { transform: scaleY(1); }

/* Shimmer overlay */
.integ-card-new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0,115,207,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.integ-card-new:hover::after {
  opacity: 1;
  animation: shimmer 1.5s ease infinite;
}

.integ-card-new:hover {
  border-color: rgba(0,115,207,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,115,207,0.12);
}

/* Icon */
.ic-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease;
}
.integ-card-new:hover .ic-icon-wrap {
  background: rgba(0,115,207,0.08);
}
.ic-icon-wrap img { width: 30px; height: 30px; object-fit: contain; }

/* Text */
.ic-text { flex: 1; min-width: 0; }
.ic-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 4px;
}
.ic-desc {
  font-size: 0.75rem;
  color: #9CA3AF;
  line-height: 1.4;
}

/* Badge */
.ic-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  /* padding: 4px 10px; */
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ic-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.ic-badge.essential { background: #ecfdf5; color: #059669; }
.ic-badge.premium   { background: #f5f3ff; color: #7C3AED; }
.ic-badge.auto      { background: #fff7ed; color: #EA580C; }

/* ─── Bottom stat strip ─── */
.integ-stats-strip {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #E2EAF4;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 30px rgba(0,115,207,0.06);
}
.integ-stat {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.integ-stat + .integ-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: #E2EAF4;
}
.integ-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.integ-stat-label {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 500;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .integ-layout { flex-direction: column; align-items: center; }
  .integ-hub-wrap { flex: none; width: 380px; }
  .integ-cards-wrap { width: 100%; }
}
@media (max-width: 640px) {
  .integ-hub-wrap { width: 320px; height: 320px; }
  .integ-cards-wrap { grid-template-columns: 1fr; }
  .integ-stats-strip { flex-direction: column; }
  .integ-stat + .integ-stat::before { top: 0; bottom: auto; left: 20%; right: 20%; width: auto; height: 1px; }
  .orbit-node { width: 50px; height: 50px; }
  .orbit-node img { width: 26px; height: 26px; }
  .hub-center { width: 80px; height: 80px; }
  .hub-center img { width: 46px; }
}

/* ── connection dot on card active ── */
.integ-card-new.card-active {
  border-color: rgba(0,115,207,0.4);
  box-shadow: 0 0 0 3px rgba(0,115,207,0.08), 0 10px 30px rgba(0,115,207,0.12);
}

/* ============================================================
   GLOBAL MICRO-ANIMATION ENHANCEMENTS
   ============================================================ */

/* Stat cards lift */
.stat-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
}
.stat-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,115,207,0.18) !important;
}

/* Feature item hover */
.feature-item {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,115,207,0.14);
}

/* Process step hover */
.process-step {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.process-step:hover { transform: scale(1.04) !important; }

/* Testimonial card lift */
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
}
.testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,115,207,0.15) !important;
}

/* Case card */
.case-card {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease !important;
}
.case-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(0,115,207,0.18) !important;
}

/* Info box float */
.info-box {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,115,207,0.14);
}

/* FAQ smooth open */
.faq-answer {
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease !important;
}

/* Benefit pill hover */
.benefit-pill {
  transition: all 0.3s ease;
}
.benefit-pill:hover {
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,115,207,0.3);
}

/* Nav link active indicator */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #0073CF, #00B4D8);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Logo subtle scale on hover */
.logo-link:hover .logo { transform: scale(1.05); transition: transform 0.3s ease; }

/* Hero badge shimmer */
.hero-badge {
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
}

/* Floating WA button bounce */
.floating-wa {
  animation: float-y 3s ease-in-out infinite !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-wa:hover {
  animation: none !important;
  transform: scale(1.15) !important;
  box-shadow: 0 12px 36px rgba(37,211,102,0.5) !important;
}

/* Client logo hover */
.client-logo-item {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.client-logo-item:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0,115,207,0.25));
}

/* Smooth page entry for hero */
.hero-left.reveal.visible { animation: fadeLeft 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.hero-right.reveal.visible { animation: fadeRight 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }

/* Button hover depth */
.btn-primary:active { transform: translateY(1px) scale(0.98) !important; }
.btn-outline:active { transform: translateY(1px) scale(0.98) !important; }

/* Section tags shimmer */
.section-tag {
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
}

/* Gradient text breathe */
.gradient-text {
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}

/* ============================================================
   TESTIMONIALS V2 — Premium redesign
   ============================================================ */

.testi-v2 {
  padding: 80px 0;
  background: #fafbff;
  position: relative;
  overflow: hidden;
}

/* ─── Mesh background orbs ─── */
.testi-bg-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.testi-mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
}
.testi-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,115,207,0.12), transparent 70%);
  top: -120px; left: -120px;
  animation: float-y 14s ease-in-out infinite;
}
.testi-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  bottom: -80px; right: -80px;
  animation: float-y 18s ease-in-out infinite reverse;
}
.testi-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%);
  top: 50%; left: 55%;
  animation: float-y 10s ease-in-out infinite 2s;
}

/* ─── Header ─── */
.testi-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.testi-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,115,207,0.08);
  border: 1px solid rgba(0,115,207,0.18);
  color: #0073CF;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 18px;
}
.testi-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0073CF;
  animation: pulse-ring 1.8s ease-out infinite;
}
.testi-main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: #0B2545; line-height: 1.15; margin-bottom: 14px;
}
.testi-sub { color: #6B7280; font-size: 1rem; }

/* ─── Featured large quote ─── */
.testi-featured {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, #0B2545 0%, #0073CF 60%, #0ea5e9 100%);
  border-radius: 28px;
  padding: 52px 60px 44px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,115,207,0.3);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}
.testi-featured:hover { transform: translateY(-6px); }

.testi-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testi-featured-quote-mark {
  font-size: 8rem; line-height: 0.6;
  color: rgba(255,255,255,0.15);
  font-family: Georgia, serif;
  position: absolute; top: 24px; left: 40px;
  pointer-events: none;
}
.testi-featured-text {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 500; color: #fff;
  line-height: 1.7; margin-bottom: 36px;
  position: relative; z-index: 2;
  transition: opacity 0.4s ease;
}
.testi-featured-author {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.testi-featured-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  transition: background 0.4s ease;
}
.testi-featured-name {
  font-weight: 800; color: #fff; font-size: 1rem;
}
.testi-featured-role { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 3px; }
.testi-featured-stars { margin-left: auto; }
.testi-star { color: rgba(255,255,255,0.3); font-size: 1.1rem; transition: color 0.4s ease, transform 0.3s ease; display: inline-block; }
.testi-star.filled { color: #FFD700; }
.testi-featured:hover .testi-star.filled { transform: scale(1.2); }
.testi-featured-badge {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}

/* ─── Card grid ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  position: relative; z-index: 2;
}

.testi-card-v2 {
  background: #fff;
  border: 1.5px solid #E2EAF4;
  border-radius: 22px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
}
.testi-card-v2.tc-visible { opacity: 1; transform: translateY(0); }
.testi-card-v2:nth-child(1) { transition-delay: 0.08s; }
.testi-card-v2:nth-child(2) { transition-delay: 0.16s; }
.testi-card-v2:nth-child(3) { transition-delay: 0.24s; }
.testi-card-v2:nth-child(4) { transition-delay: 0.32s; }

.testi-card-v2::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,115,207,0.04), rgba(0,180,216,0.04));
  opacity: 0; transition: opacity 0.4s;
}
.testi-card-v2:hover::after { opacity: 1; }
.testi-card-v2:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0,115,207,0.3);
  box-shadow: 0 20px 50px rgba(0,115,207,0.14);
}
.testi-card-v2.tc-active {
  border-color: #0073CF;
  box-shadow: 0 0 0 3px rgba(0,115,207,0.12), 0 16px 40px rgba(0,115,207,0.16);
}

.testi-card-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.testi-card-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.testi-card-name { font-weight: 700; font-size: 0.85rem; color: #0B2545; }
.testi-card-role { font-size: 0.72rem; color: #9CA3AF; margin-top: 2px; }
.testi-card-stars { margin-left: auto; color: #FFD700; font-size: 0.75rem; letter-spacing: 1px; }
.testi-card-text {
  font-size: 0.85rem; color: #4B5563; line-height: 1.65;
  margin-bottom: 16px; font-style: italic;
}
.testi-card-metric {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 14px;
  background: #f4f8ff;
  border-radius: 12px;
}
.testi-metric-num {
  font-size: 1.2rem; font-weight: 900;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testi-metric-label { font-size: 0.72rem; color: #6B7280; font-weight: 500; }

/* ─── Video block ─── */
.testi-video-wrap { position: relative; z-index: 2; }
.testi-video-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #0073CF;
  margin-bottom: 16px;
}
.testi-video-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E63946; animation: pulse-ring 1.5s ease-out infinite;
}
.testi-video-inner {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.testi-video-player { width: 100%; display: block; border-radius: 22px; }
.testi-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.6), transparent 50%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.testi-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: auto; margin-top: auto;
  animation: pulse-ring 2.5s ease-out infinite;
}
.testi-video-caption {
  color: #fff; font-size: 0.9rem; text-align: center;
  padding: 0 20px 24px; align-self: flex-end; width: 100%;
}
.testi-video-caption strong { display: block; font-size: 1rem; margin-bottom: 2px; }

/* Responsive */
@media (max-width: 1024px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-featured { padding: 36px 28px 32px; }
  .testi-featured-text { font-size: 1rem; }
  .testi-featured-badge { display: none; }
}

/* ============================================================
   FINAL CTA V2 — Deep navy + animated mesh + split layout
   ============================================================ */

.cta-v2 {
  padding: 120px 0 130px;
  background: #020d1f;
  position: relative;
  overflow: hidden;
}

/* ─── Animated background ─── */
.cta-v2-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-v2-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.7;
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,115,207,0.3), transparent 70%);
  top: -150px; left: -100px;
  animation: float-y 16s ease-in-out infinite;
}
.cta-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.2), transparent 70%);
  bottom: -120px; right: -80px;
  animation: float-y 20s ease-in-out infinite reverse;
}
.cta-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  top: 40%; right: 30%;
  animation: float-y 12s ease-in-out infinite 3s;
}
.cta-v2-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,115,207,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,115,207,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
/* Fade edges */
.cta-v2-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #020d1f 80%);
}
.cta-v2-particles { position: absolute; inset: 0; }

/* ─── Inner split ─── */
.cta-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}

/* ─── LEFT copy ─── */
.cta-v2-left { color: #fff; }
.cta-v2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.3);
  color: #60c8ff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 24px;
}
.cta-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00B4D8; animation: pulse-ring 1.6s ease-out infinite;
}
.cta-v2-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: #fff;
}
.cta-v2-gradient {
  background: linear-gradient(135deg, #00B4D8, #0073CF, #60c8ff);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
.cta-v2-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 32px; max-width: 440px;
}

/* Avatar stack */
.cta-v2-avatars { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.cta-avatar-stack { display: flex; }
.cta-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.72rem; color: #fff;
  border: 2.5px solid #020d1f; margin-left: -10px;
}
.cta-av:first-child { margin-left: 0; }
.cta-av-more {
  background: rgba(255,255,255,0.12) !important;
  font-size: 0.62rem;
  backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.2) !important;
}
.cta-avatar-stars { color: #FFD700; font-size: 0.85rem; letter-spacing: 2px; }
.cta-avatar-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* Checklist */
.cta-v2-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.cta-v2-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
}

/* Portal logos */
.cta-v2-portals {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cta-v2-portals span { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 600; }
.cta-v2-portals img {
  height: 26px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.cta-v2-portals img:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.12);
}

/* ─── RIGHT form card ─── */
.cta-v2-right { position: relative; }
.cta-v2-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.cta-v2-card:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 30px 80px rgba(0,115,207,0.25);
}

/* Animated rotating border gradient */
.cta-card-border {
  position: absolute; inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from 0deg, transparent 0%, #0073CF 20%, #00B4D8 40%, transparent 60%);
  opacity: 0;
  z-index: -1;
  animation: spin-slow 6s linear infinite;
  transition: opacity 0.4s ease;
}
.cta-v2-card:hover .cta-card-border { opacity: 0.5; }

.cta-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cta-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  animation: float-y 4s ease-in-out infinite;
}
.cta-card-header h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-card-header p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Form fields */
.cta-v2-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.cta-field label {
  display: block; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 8px;
}
.cta-input-wrap { position: relative; }
.cta-input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.3); pointer-events: none;
  transition: color 0.3s ease;
}
.cta-input-wrap:focus-within .cta-input-icon { color: #00B4D8; }
.cta-input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px 14px 44px;
  font-size: 0.9rem; color: #fff;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cta-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.cta-input-wrap input:focus {
  border-color: #0073CF;
  background: rgba(0,115,207,0.08);
  box-shadow: 0 0 0 4px rgba(0,115,207,0.12);
}

/* Submit button */
.cta-v2-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  background-size: 200% auto;
  color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 16px 28px;
  border-radius: 14px; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 8px 30px rgba(0,115,207,0.4);
  position: relative; overflow: hidden;
}
.cta-v2-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cta-v2-submit:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,115,207,0.55); }
.cta-v2-submit:hover::after { opacity: 1; }
.cta-v2-submit:active { transform: translateY(0) scale(0.97); }

/* Trust row */
.cta-trust-row {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.cta-trust-item {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: color 0.3s, border-color 0.3s;
}
.cta-trust-item:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }

/* Responsive */
@media (max-width: 1024px) {
  .cta-v2-inner { grid-template-columns: 1fr; gap: 56px; }
  .cta-v2-title { font-size: 2.6rem; }
}
@media (max-width: 640px) {
  .cta-v2-inner { gap: 40px; }
  .cta-v2-title { font-size: 2.1rem; }
  .cta-v2-card { padding: 28px 22px; }
}

/* ============================================================
   TESTIMONIALS V3
   ============================================================ */
.testi-v3 {
  position: relative;
  padding: 100px 0 80px;
  background: #F4F8FC;
  overflow: hidden;
}
.tv3-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.tv3-accent-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0073CF, #1A8FE3, #00B4D8, #7C3AED);
}
.tv3-header {
  text-align: center;
  margin-bottom: 56px;
}
.tv3-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,115,207,0.08);
  border: 1px solid rgba(0,115,207,0.2);
  color: #0073CF;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 18px;
}
.tv3-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: #0B2545;
  line-height: 1.15; margin: 0 0 14px;
}
.tv3-hl {
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.tv3-sub {
  font-size: 1.05rem; color: #6B7280; max-width: 520px; margin: 0 auto;
}

/* VIDEO HERO */
.tv3-video-hero {
  margin-bottom: 60px;
}
.tv3-video-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto 20px;
  box-shadow: 0 24px 80px rgba(0,115,207,0.22), 0 2px 8px rgba(0,0,0,0.08);
  background: #0B2545;
}
.tv3-video-glow {
  position: absolute; inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0073CF, #00B4D8, #7C3AED);
  z-index: -1;
}
.tv3-video-label-top {
  position: absolute; top: 16px; left: 16px; z-index: 10;
  display: flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.tv3-video-player {
  width: 100%; display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.tv3-video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  background: rgba(11,37,69,0.55);
  cursor: pointer;
  transition: opacity 0.4s;
}
.tv3-play-ring {
  position: relative;
  width: 80px; height: 80px;
}
.tv3-play-pulse {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: tvPulse 2s ease-in-out infinite;
}
@keyframes tvPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.2; }
}
.tv3-play-btn-inner {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.tv3-video-overlay:hover .tv3-play-btn-inner { transform: scale(1.08); }
.tv3-video-meta { text-align: center; }
.tv3-video-meta-name {
  color: #fff; font-size: 1.05rem; font-weight: 700;
}
.tv3-video-meta-sub {
  color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-top: 4px;
}

/* VIDEO STATS STRIP */
.tv3-video-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: #fff;
  border: 1px solid #E2EAF4;
  border-radius: 14px;
  max-width: 520px; margin: 0 auto;
  padding: 18px 28px;
  box-shadow: 0 4px 24px rgba(0,115,207,0.08);
}
.tv3-vstat {
  flex: 1; text-align: center;
}
.tv3-vstat-num {
  display: block;
  font-size: 1.7rem; font-weight: 800; color: #0073CF;
  line-height: 1;
}
.tv3-vstat-label {
  font-size: 0.78rem; color: #6B7280; font-weight: 500; margin-top: 4px;
}
.tv3-vstat-divider {
  width: 1px; height: 40px; background: #E2EAF4;
}

/* TEXT CARDS GRID */
.tv3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tv3-card {
  background: #fff;
  border: 1px solid #E2EAF4;
  border-radius: 18px;
  padding: 28px 26px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tv3-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,115,207,0.13);
}
.tv3-card--accent {
  background: linear-gradient(145deg, #0B2545, #0073CF);
  border-color: transparent;
}
.tv3-card--accent .tv3-card-text { color: rgba(255,255,255,0.85); }
.tv3-card--accent .tv3-card-quote { color: rgba(255,255,255,0.15); }
.tv3-card--accent .tv3-card-name { color: #fff; }
.tv3-card--accent .tv3-card-role { color: rgba(255,255,255,0.6); }
.tv3-card--accent .tv3-stars { color: #FCD34D; }
.tv3-card-quote {
  font-size: 5rem; line-height: 1; color: #E2EAF4;
  font-family: Georgia, serif;
  position: absolute; top: 12px; right: 20px;
  pointer-events: none;
}
.tv3-card-text {
  font-size: 0.95rem; color: #374151; line-height: 1.7;
  margin: 0 0 22px; position: relative; z-index: 1;
}
.tv3-card-text strong { color: #0073CF; }
.tv3-card--accent .tv3-card-text strong { color: #7DD3FC; }
.tv3-card-footer {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.tv3-card-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.78rem;
  flex-shrink: 0;
}
.tv3-card-name { font-size: 0.88rem; font-weight: 700; color: #0B2545; }
.tv3-card-role { font-size: 0.78rem; color: #6B7280; }
.tv3-card-badge {
  margin-left: auto;
  background: rgba(0,115,207,0.08);
  color: #0073CF;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.tv3-card--accent .tv3-card-badge {
  background: rgba(255,255,255,0.15);
  color: #BAE6FD;
}
.tv3-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }

@media (max-width: 900px) {
  .tv3-cards { grid-template-columns: 1fr; }
  .tv3-video-stats { flex-wrap: wrap; }
}

/* ============================================================
   PREMIUM VIDEO TESTIMONIALS — vtm-*
   ============================================================ */
.vtm-section {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(160deg, #F0F6FF 0%, #F7F4FF 50%, #EFF9F4 100%);
  overflow: hidden;
}

/* Background decoration */
.vtm-bg { position: absolute; inset: 0; pointer-events: none; }
.vtm-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #7EC8E3, #9DBBFF, #B8A9FF, #A8E6CF);
}
.vtm-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.45; pointer-events: none;
}
.vtm-blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #C7E2FF 0%, transparent 70%);
  top: -160px; left: -140px;
  animation: vtmFloat1 14s ease-in-out infinite;
}
.vtm-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #DDD6FE 0%, transparent 70%);
  top: 40px; right: -100px;
  animation: vtmFloat2 18s ease-in-out infinite;
}
.vtm-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #BBF7D0 0%, transparent 70%);
  bottom: -80px; left: 40%;
  animation: vtmFloat3 12s ease-in-out infinite;
}
@keyframes vtmFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,20px)} }
@keyframes vtmFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,30px)} }
@keyframes vtmFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(15px,-20px)} }

/* Scroll fade-in animation */
.vtm-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(.22,.68,0,1.05), transform 0.75s cubic-bezier(.22,.68,0,1.05);
}
.vtm-fade-in.vtm-visible { opacity: 1; transform: translateY(0); }
.vtm-delay-1 { transition-delay: 0.15s; }
.vtm-delay-2 { transition-delay: 0.28s; }

/* ---- HEADER ---- */
.vtm-header { text-align: center; margin-bottom: 52px; }
.vtm-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.22);
  color: #6366F1;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 7px 18px; border-radius: 100px;
  margin-bottom: 18px;
}
.vtm-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  animation: vtmPillPulse 2s ease-in-out infinite;
}
@keyframes vtmPillPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.vtm-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800; color: #0B2545;
  line-height: 1.15; margin: 0 0 14px;
}
.vtm-hl {
  background: linear-gradient(135deg, #6366F1, #7EC8E3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.vtm-sub { font-size: 1.05rem; color: #6B7280; max-width: 540px; margin: 0 auto; }

/* ---- MAIN PLAYER ---- */
.vtm-player-wrap { margin-bottom: 44px; }
.vtm-player-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 20px;
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.12),
    0 8px 32px rgba(99,102,241,0.14),
    0 32px 80px rgba(0,0,0,0.12);
  background: #0B1228;
  /* Glassmorphism border */
  outline: 1.5px solid rgba(255,255,255,0.6);
  animation: vtmPlayerIn 0.85s cubic-bezier(.22,.68,0,1.05) both;
}
@keyframes vtmPlayerIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Live badge */
.vtm-live-badge {
  position: absolute; top: 16px; left: 16px; z-index: 20;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.77rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  pointer-events: none;
}
.vtm-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: vtmPillPulse 2s ease-in-out infinite;
}

/* iframe */
.vtm-media-box { width: 100%; aspect-ratio: 16/9; display: block; }
.vtm-main-frame {
  width: 100%; height: 100%; display: block; border: none;
  border-radius: 20px;
}

/* Fade transition overlay */
.vtm-transition-overlay {
  position: absolute; inset: 0;
  background: rgba(240,246,255,0.65);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 15;
}
.vtm-transition-overlay.vtm-fading { opacity: 1; }

/* Stats strip */
.vtm-stats-strip {
  display: flex; align-items: center; justify-content: center;
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 16px 32px;
  box-shadow: 0 4px 28px rgba(99,102,241,0.09), 0 1px 4px rgba(0,0,0,0.05);
  gap: 0;
}
.vtm-stat { flex: 1; text-align: center; }
.vtm-stat-num {
  display: block; font-size: 1.55rem; font-weight: 800;
  background: linear-gradient(135deg, #6366F1, #0073CF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.vtm-stat-lbl { font-size: 0.76rem; color: #9CA3AF; font-weight: 500; margin-top: 4px; }
.vtm-stat-sep { width: 1px; height: 36px; background: rgba(99,102,241,0.12); flex-shrink: 0; }

/* ---- THUMBNAIL SLIDER ---- */
.vtm-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 38px;
  max-width: 960px;
  margin: 0 auto;
}
.vtm-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 12px;
  flex: 1;
  cursor: grab;
}
.vtm-slider:active { cursor: grabbing; }
.vtm-slider::-webkit-scrollbar { display: none; }

/* Arrow buttons */
.vtm-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,0.2);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  color: #6366F1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.vtm-arrow:hover {
  background: #6366F1; color: #fff;
  border-color: #6366F1;
  transform: scale(1.08);
}

/* Each thumbnail card */
.vtm-thumb {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s, border-color 0.25s;
}
.vtm-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(99,102,241,0.18);
}
.vtm-thumb-active {
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99,102,241,0.15), 0 8px 28px rgba(99,102,241,0.2);
}

/* Thumbnail image area */
.vtm-thumb-img-wrap {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden;
  background: #C7D2FE;
}
.vtm-thumb-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.vtm-thumb:hover .vtm-thumb-img { transform: scale(1.06); }

/* Overlay with play icon */
.vtm-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(11,18,40,0.32);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.vtm-thumb:hover .vtm-thumb-overlay { background: rgba(99,102,241,0.35); }
.vtm-thumb-play {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.vtm-thumb-play svg { fill: #6366F1; }
.vtm-thumb:hover .vtm-thumb-play { transform: scale(1.14); }

/* Active glow ring */
.vtm-thumb-glow-ring {
  position: absolute; inset: 0; border-radius: 2px;
  pointer-events: none;
  opacity: 0; transition: opacity 0.25s;
}
.vtm-thumb-active .vtm-thumb-glow-ring {
  opacity: 1;
  box-shadow: inset 0 0 0 2px rgba(99,102,241,0.5);
}

/* Thumbnail text */
.vtm-thumb-info {
  padding: 10px 12px 12px;
}
.vtm-thumb-name {
  font-size: 0.82rem; font-weight: 700; color: #0B2545;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vtm-thumb-role {
  font-size: 0.71rem; color: #9CA3AF; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .vtm-section { padding: 72px 0 64px; }
  .vtm-player-shell { border-radius: 14px; }
  .vtm-thumb { flex: 0 0 192px; }
  .vtm-stats-strip { padding: 14px 18px; gap: 0; flex-wrap: wrap; }
  .vtm-stat-sep { display: none; }
  .vtm-stat { flex: 0 0 50%; padding: 6px 0; }
  .vtm-stat:nth-child(2),
  .vtm-stat:nth-child(4) { border-left: 1px solid rgba(99,102,241,0.12); }
  .vtm-arrow { display: none; }
  .vtm-slider-wrap { padding: 0; }
}
@media (max-width: 480px) {
  .vtm-thumb { flex: 0 0 168px; }
  .vtm-title { font-size: 1.8rem; }
}

/* ============================================================
   CTA V3
   ============================================================ */
.cta-v3 {
  position: relative;
  padding: 0 0 100px;
  background: #0B2545;
  overflow: hidden;
}
.cta3-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.cta3-wave-top {
  position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: #F4F8FC;
  clip-path: ellipse(55% 100% at 50% 0%);
}
.cta3-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.cta3-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
  padding-top: 80px;
}
/* LEFT */
.cta3-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.3);
  color: #7DD3FC;
  font-size: 0.77rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.cta3-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  animation: ctaDot 2s ease-in-out infinite;
}
@keyframes ctaDot {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.cta3-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin: 0 0 18px;
}
.cta3-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #1A8FE3, #00B4D8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta3-body {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin: 0 0 32px; max-width: 440px;
}
.cta3-proof-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.cta3-av-stack { display: flex; }
.cta3-av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #0B2545;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.7rem;
  margin-left: -8px;
}
.cta3-av:first-child { margin-left: 0; }
.cta3-av-more {
  background: rgba(255,255,255,0.15);
  font-size: 0.65rem;
}
.cta3-stars { color: #FCD34D; font-size: 0.9rem; letter-spacing: 2px; }
.cta3-proof-sub { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 3px; }
.cta3-checklist {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 11px;
}
.cta3-checklist li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.cta3-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #00B4D8; font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}
.cta3-logos {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cta3-logos-label {
  color: rgba(255,255,255,0.4); font-size: 0.78rem;
}
.cta3-logos img {
  height: 26px; opacity: 0.5; filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.cta3-logos img:hover { opacity: 0.9; }

/* RIGHT — FORM CARD */
.cta3-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.07);
}
.cta3-card-shine {
  position: absolute; top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta3-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #E2EAF4;
}
.cta3-card-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
}
.cta3-card-title {
  font-size: 1.2rem; font-weight: 800; color: #0B2545; margin: 0 0 3px;
}
.cta3-card-sub { font-size: 0.82rem; color: #6B7280; margin: 0; }
.cta3-field { margin-bottom: 16px; }
.cta3-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: #374151; margin-bottom: 7px;
}
.cta3-input-wrap {
  position: relative;
}
.cta3-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: #9CA3AF; pointer-events: none;
}
.cta3-input {
  width: 100%; padding: 12px 14px 12px 38px;
  border: 1.5px solid #E2EAF4; border-radius: 10px;
  font-size: 0.92rem; color: #0B2545;
  font-family: 'Poppins', sans-serif;
  background: #F9FBFE;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.cta3-input:focus {
  outline: none; border-color: #0073CF;
  box-shadow: 0 0 0 3px rgba(0,115,207,0.1);
  background: #fff;
}
.cta3-submit {
  width: 100%; padding: 16px 20px;
  background: linear-gradient(135deg, #0073CF, #1A8FE3);
  color: #fff; border: none; border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,115,207,0.35);
}
.cta3-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,115,207,0.45);
}
.cta3-trust {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cta3-trust span {
  font-size: 0.73rem; color: #9CA3AF; font-weight: 500;
}

@media (max-width: 1024px) {
  .cta3-layout { grid-template-columns: 1fr; gap: 56px; }
  .cta3-headline { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .cta-v3 { padding: 0 0 60px; }
  .cta3-card { padding: 28px 20px; }
  .cta3-headline { font-size: 2rem; }
}

/* ============================================================
   LOCAL EXPERTISE V4
   ============================================================ */
.city-v4 {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
.cv4-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.cv4-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,115,207,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,115,207,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cv4-glow-left {
  position: absolute; top: 10%; left: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,115,207,0.07) 0%, transparent 70%);
}
.cv4-glow-right {
  position: absolute; bottom: 10%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
}

.cv4-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.cv4-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #0073CF;
  background: rgba(0,115,207,0.07);
  border: 1px solid rgba(0,115,207,0.18);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.cv4-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #0B2545;
  line-height: 1.1; margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.cv4-cityspan {
  display: inline-block;
  background: linear-gradient(135deg, #0073CF 0%, #00B4D8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  position: relative;
}
.cv4-cityspan::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0073CF, #00B4D8);
  border-radius: 2px;
}
.cv4-sub {
  font-size: 1rem; color: #6B7280; max-width: 500px; margin: 0 auto;
}

.cv4-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* MAP CARD */
.cv4-map-card {
  background: #fff;
  border: 1px solid #E2EAF4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,115,207,0.1);
}
.cv4-map-label {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: #F4F8FC;
  border-bottom: 1px solid #E2EAF4;
  font-size: 0.82rem; font-weight: 600; color: #0073CF;
}
.cv4-map-shell {
  position: relative;
  height: 340px;
}
.cv4-map-shell iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.cv4-map-overlay {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -60px 40px rgba(255,255,255,0.6);
}
.cv4-map-footer {
  display: flex; align-items: center; justify-content: space-around;
  padding: 18px 24px;
  border-top: 1px solid #E2EAF4;
  background: #FAFCFF;
}
.cv4-mf-stat { text-align: center; }
.cv4-mf-n {
  display: block;
  font-size: 1.5rem; font-weight: 800; color: #0073CF; line-height: 1;
}
.cv4-mf-l {
  font-size: 0.72rem; color: #9CA3AF; font-weight: 500; margin-top: 3px;
}
.cv4-mf-divider {
  width: 1px; height: 36px; background: #E2EAF4;
}

/* RIGHT PANELS */
.cv4-panels {
  display: flex; flex-direction: column; gap: 0;
}
.cv4-panel {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.cv4-panel--blue {
  background: linear-gradient(135deg, #EBF4FF, #F0FBFF);
  border: 1px solid rgba(0,115,207,0.15);
}
.cv4-panel-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.cv4-panel-title {
  font-size: 1.05rem; font-weight: 700; color: #0B2545;
  margin: 0 0 6px;
}
.cv4-panel-text { font-size: 0.88rem; color: #6B7280; margin: 0; line-height: 1.6; }

.cv4-features {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid #E2EAF4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.cv4-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.2s;
}
.cv4-feat:last-child { border-bottom: none; }
.cv4-feat:hover { background: #F9FBFE; }
.cv4-feat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #0073CF;
}
.cv4-feat-title {
  font-size: 0.88rem; font-weight: 700; color: #0B2545; margin-bottom: 3px;
}
.cv4-feat-sub {
  font-size: 0.78rem; color: #9CA3AF; line-height: 1.4;
}

.cv4-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0073CF, #1A8FE3);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,115,207,0.3);
  align-self: flex-start;
}
.cv4-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,115,207,0.4);
}

@media (max-width: 900px) {
  .cv4-body { grid-template-columns: 1fr; }
  .cv4-map-shell { height: 260px; }
}

/* ============================================================
   CTA V4
   ============================================================ */
.cta-v4 {
  position: relative;
  background: #060F1E;
  padding: 80px 0 100px;
  overflow: hidden;
}
.cta4-backdrop {
  position: absolute; inset: 0; pointer-events: none;
}
.cta4-shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.cta4-shape-1 {
  width: 500px; height: 500px;
  background: rgba(0,115,207,0.15);
  top: -100px; left: -100px;
}
.cta4-shape-2 {
  width: 400px; height: 400px;
  background: rgba(0,180,216,0.1);
  bottom: -80px; right: -80px;
}
.cta4-shape-3 {
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.08);
  top: 40%; left: 40%;
}
.cta4-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* STATS BAR */
.cta4-stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 40px;
  margin-bottom: 72px;
  backdrop-filter: blur(10px);
}
.cta4-stat { text-align: center; padding: 0 40px; }
.cta4-stat-n {
  display: block;
  font-size: 2.2rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.03em;
}
.cta4-stat-plus {
  font-size: 1.2rem; font-weight: 700; color: #00B4D8;
}
.cta4-stat-l {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  font-weight: 500; margin-top: 5px; display: block;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cta4-stat-sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* MAIN LAYOUT */
.cta4-main {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.cta4-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  color: #7DD3FC;
  font-size: 0.77rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.cta4-badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: cta4Pulse 1.8s ease-in-out infinite;
}
@keyframes cta4Pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.cta4-headline {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; margin: 0;
  letter-spacing: -0.03em;
}
.cta4-headline-under {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.cta4-headline-under em {
  font-style: normal;
  background: linear-gradient(90deg, #1A8FE3, #00B4D8, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta4-desc {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin: 0 0 32px; max-width: 420px;
}

/* Proof */
.cta4-proof {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.cta4-avatars { display: flex; }
.cta4-av {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid #060F1E;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.68rem; font-weight: 700;
  margin-left: -10px;
}
.cta4-av:first-child { margin-left: 0; }
.cta4-av-extra {
  background: rgba(255,255,255,0.1);
  font-size: 0.6rem;
}
.cta4-proof-stars { color: #FCD34D; font-size: 0.9rem; letter-spacing: 2px; }
.cta4-proof-sub { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 3px; }

/* Checks */
.cta4-checks {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.cta4-check-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
}
.cta4-chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #00B4D8; font-size: 0.7rem; font-weight: 700;
}

/* Integrations strip */
.cta4-integrations {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cta4-int-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cta4-int-logos { display: flex; align-items: center; gap: 10px; }
.cta4-int-logos img {
  height: 22px; opacity: 0.4; filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.cta4-int-logos img:hover { opacity: 0.85; }

/* FORM CARD */
.cta4-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.cta4-form-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F4F6;
}
.cta4-form-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(135deg, #0073CF, #00B4D8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta4-form-title {
  font-size: 1.1rem; font-weight: 800; color: #0B2545;
}
.cta4-form-sub { font-size: 0.8rem; color: #9CA3AF; margin-top: 2px; }

/* Step tabs */
.cta4-step-tabs {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px;
}
.cta4-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: #9CA3AF;
  transition: color 0.3s;
}
.cta4-step.active { color: #0073CF; }
.cta4-step-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: #F3F4F6; color: #9CA3AF;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  transition: background 0.3s, color 0.3s;
}
.cta4-step.active .cta4-step-dot {
  background: #0073CF; color: #fff;
}
.cta4-step-line {
  flex: 1; height: 1px; background: #E5E7EB; margin: 0 10px;
}

/* Fields */
.cta4-field { margin-bottom: 14px; }
.cta4-lbl {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: #374151; margin-bottom: 6px;
}
.cta4-inp-wrap { position: relative; }
.cta4-inp-ico {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #D1D5DB; pointer-events: none;
}
.cta4-inp {
  width: 100%; padding: 11px 14px 11px 36px;
  border: 1.5px solid #E5E7EB; border-radius: 10px;
  font-size: 0.9rem; color: #0B2545;
  font-family: 'Poppins', sans-serif;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.cta4-inp:focus {
  outline: none; border-color: #0073CF; background: #fff;
  box-shadow: 0 0 0 3px rgba(0,115,207,0.1);
}
.cta4-next-btn, .cta4-submit-btn {
  width: 100%; padding: 14px 20px; margin-top: 6px;
  background: linear-gradient(135deg, #0073CF, #1A8FE3);
  color: #fff; border: none; border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,115,207,0.3);
}
.cta4-next-btn:hover, .cta4-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,115,207,0.4);
}

/* Confirm box */
.cta4-confirm-box {
  background: #F9FBFE;
  border: 1px solid #E2EAF4;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.cta4-confirm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.85rem;
}
.cta4-confirm-row:last-child { border-bottom: none; }
.cta4-confirm-lbl { color: #9CA3AF; font-weight: 500; }
.cta4-confirm-val { color: #0B2545; font-weight: 700; }
.cta4-back-btn {
  display: block; width: 100%; padding: 10px;
  margin-top: 10px;
  background: none; border: 1px solid #E5E7EB; border-radius: 10px;
  color: #6B7280; font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; cursor: pointer;
  transition: background 0.2s;
}
.cta4-back-btn:hover { background: #F9FAFB; }

.cta4-trust-strip {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid #F3F4F6;
}
.cta4-trust-strip span {
  font-size: 0.72rem; color: #9CA3AF; font-weight: 500;
}

@media (max-width: 1080px) {
  .cta4-main { grid-template-columns: 1fr; gap: 56px; }
  .cta4-stats-bar { gap: 0; padding: 16px 20px; }
  .cta4-stat { padding: 0 20px; }
  .cta4-stat-n { font-size: 1.6rem; }
}
@media (max-width: 640px) {
  .cta4-stats-bar { flex-wrap: wrap; gap: 16px; }
  .cta4-stat-sep { display: none; }
  .cta4-stat { padding: 0 16px; }
  .cta4-form-card { padding: 24px 18px; }
}
